home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 6_17.lha / 6_17 / 6_17a11.c < prev    next >
C/C++ Source or Header  |  1993-08-08  |  420b  |  20 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / x = -y
  6. include <minmax.h>
  7. ector& operator-(vector &v1)
  8.  
  9.    // allocate the new vector
  10.    int l = v1.p->length;
  11.    vector *v = new vector(l);
  12.  
  13.    // do the operations
  14.    float *f = v->p->f;
  15.    float *f1 = v1.p->f;
  16.    for (int i = 0; i < l; i++)
  17. *f++ = - *f1++;
  18.    return *v;
  19.  
  20.